home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2007 January, February, March & April
/
Chip-Cover-CD-2007-02.iso
/
Pakiet multimedia
/
Linux LiveCD
/
GeeXboX 1.0 EN
/
geexbox-1.0-en.i386.iso
/
GEEXBOX
/
etc
/
init.d
/
30_tvout
< prev
next >
Wrap
Text File
|
2006-06-21
|
676b
|
29 lines
#!/bin/sh
#
# setup the tvout
#
# runlevels: geexbox, debug, install
test -f /etc/tvout || exit 1
echo "### Setting up TV-Out ###"
. /etc/tvout
atitvout $TVOUT_STANDARD auto >/dev/null 2>&1
test "`atitvout active 2>/dev/null | sed -n 's/TV.*/TV/p'`" = "TV" && echo "" > /var/tvout
# There is no possibility of tv cable autodetection with nvtv so
# tvout is not enabled automatically. Uncomment the following lines
# to have nvtv tvout enabled at boot.
#nvtv $NVTV_ON >/dev/null 2>&1
#echo "" > /var/tvout
# The same applies to S3 cards for which you need to uncomment
# the following lines.
#s3switch -q tv $TVOUT_STANDARD >/dev/null 2>&1
#echo "" > /var/tvout
exit 0